home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / COMMUNIC / TERMINAL / 1589.ZIP / ICU_USER.H < prev    next >
Text File  |  1989-02-17  |  903b  |  23 lines

  1. /* This file contains information command to all icu user interface 
  2.    programs running on the AT under Microsoft Windows               */
  3.  
  4. /****************************************
  5. * dialog box control sizes              *
  6. ****************************************/
  7. #define EDIT_HGT  14
  8. #define BUTT_WDTH 40
  9. #define BUTT_HGT  14
  10. /****************************************
  11. * file containing windows sizes         *
  12. ****************************************/
  13. #define SIZEFILE "winsize.icu"
  14. #define MENU_STRING "Save Window Size"
  15. /****************************************
  16. * structure of saved window in file     *
  17. ****************************************/
  18. struct window_size {
  19.    char app_name[12];                   /* name of window */
  20.    RECT size;                           /* coordinates of window */
  21.    BOOL icon;                           /* if TRUE, window is iconic */
  22.    };
  23.